home *** CD-ROM | disk | FTP | other *** search
/ Aminet 37 / Aminet 37 (2000)(Schatztruhe)[!][Jun 2000].iso / Aminet / dev / misc / FD2Pragma.lha / FD2Pragma / Scripts / MakePPCStuff < prev    next >
AmigaDOS Script File  |  2000-04-01  |  517b  |  20 lines

  1. .key FDFILE/A,CLIBFILE/A,DEST/A
  2. .bra {
  3. .ket }
  4.  
  5. ; $VER: MakePPCStuff 1.0 (31.12.1998)
  6. ; script to create all the needed library stuff with FD2Pragma
  7. ; DEST must already exist and should be empty.
  8.  
  9. FailAt 21
  10.  
  11. MakeDir >NIL: {DEST}proto
  12. MakeDir >NIL: {DEST}powerup/ppcpragmas
  13. MakeDir >NIL: {DEST}powerup/ppcinline
  14.  
  15. FD2Pragma {FDFILE} SPECIAL 53 CLIB {CLIBFILE} TO {DEST}powerup/ppcpragmas/
  16. FD2Pragma {FDFILE} SPECIAL 54 TO {DEST}proto/
  17. FD2Pragma {FDFILE} SPECIAL 50 CLIB {CLIBFILE} TO {DEST}powerup/ppcinline/
  18.  
  19. FailAt 10
  20.